Pending Review
Last Updated: 20 Dec 2024 13:06 by Sasidhar

For the Telerik Spreadsheet control, XlsxFormatProvider.Export() API is used for saving the .xlsx file manually without the UI command(Save As dialog) invocation. This API is currently returning a byte stream.

The requirement is that the API should also intimate the user whether the export is successful or not by returning a boolean value.

Note: I think we can implement this requirement at the base level which is for the BinaryFormatProviderBase class or atleast at the FormatProviderBase class.

Completed
Last Updated: 20 Dec 2024 08:55 by ADMIN
Release 2024.4.1219 (Preview)
Created by: n/a
Comments: 7
Category: PDFViewer
Type: Bug Report
3

Some lines on attached files are to thick. Other pdf programs shows that correctly. 

Regards
Janez

In Development
Last Updated: 20 Dec 2024 08:46 by ADMIN
Scheduled for 2025 Q1 (February)

When using the RadToggleSwitchButton and the CheckedContent and UncheckedContent properties are not utilized, in some themes, the on and off states cannot be correctly distinguished. For example, the track or the thumb does not indicate whether the button is checked or not.

Themes, in which this is present are the following ones:

  • Material
  • Office2013
  • Windows8 and Windows8Touch
  • OfficeBlack, OfficeBlue, and OfficeSilver 
In Development
Last Updated: 20 Dec 2024 08:46 by ADMIN
Scheduled for 2025 Q1 (February)
Some colors are changed due to incorrect import of some graphic state colors.
In Development
Last Updated: 20 Dec 2024 08:46 by ADMIN
Scheduled for 2025 Q1 (February)
The GridViewCheckBox element is not affected by the compact mode of the Windows 11 theme.
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
IOException while exporting the document to byte array(PDF)
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
Currently, for some of the newer themes, such as Windows 11, the expand/collapse icon and tooltip are incorrect.
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)

The numeric box that allows you to select the "to" page in the PrintPreviewControl is clipped when the "Pages:" and "to" strings are translated to a language where these words are longer. For example, this reproduces with Dutch culture which uses the "Pagina's:" and "naar" texts.

To work this around, you can get the Grid panel that hosts the content and increase the Width of one of its ColumnDefinitions.

  private void PrintPreviewControl_Loaded(object sender, RoutedEventArgs e)
  {
      var printPreview = (PrintPreviewControl)sender;
      var rootGrid = printPreview.FindChildByType<Grid>();
      rootGrid.ColumnDefinitions[0].Width = new GridLength(355);
  }

Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)

In the scenario where the Fluent theme is applied and the MonthViewDefinition'sAllowCustomAppointmentSize property is set to True, appointments with different heights may overlap the expand/collapse RadToggleButton when collapsed.

To work this around, extract the default GroupHeaderStyleSelector for the Fluent theme. Then, extract the Style with x:Key="MonthViewBottomLevelWeekGroupStyle" and modify the Padding property's value. Set this Style to the MonthViewBottomLevelWeekGroupStyle property of the extracted OrientedGroupHeaderStyleSelector (default GroupHeaderStyleSelector). Finally, set an instance of the modified style selector to the GroupHeaderStyleSelector property of RadScheduleView.

Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
Created by: Martin Ivanov
Comments: 0
Category: RichTextBox
Type: Bug Report
1

Using the SpreadStreamExport feature of RadGridView doesn't work as expected when exporting DateTime objects. It exports the dates as String values which prevents the date-related features (like formatting) to work in Excel. 

To work this around, you can create a custom SpreadStreamExportRenderer and override its SetCellValue method. This will allow you to manually provide the DateTime object instead of the string.

  public class MyRenderer : SpreadStreamExportRenderer
  {
      public override void SetCellValue(DataType dataType, object value)
      {
          DateTime date;
          if (value != null && DateTime.TryParse(value.ToString(), out date))
          {
              base.SetCellValue(DataType.DateTime, date);
              var cell = this.GetCell() as ICellExporter;
              cell.SetFormat(new SpreadCellFormat() { NumberFormat = "yyyy-MM-dd HH:mm:ss" });
              return;
          }
          base.SetCellValue(dataType, value);
      }
  }


 spreadStreamExport.RunExportAsync(FILENAME, new MyRenderer(), options);

Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
PdfViewer: Invalid rendering with German culture (Regression). Some text is missing and the rendering is broken.
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
When the ItemsSource of a LocalDataSourceProvider is null initially and than set to a new value, the FieldListViewModel of the inline field list is not refreshed. 
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
Last row groups and totals are cut off when the FieldListBehavior.ShowInline attached property is set to True on the RadPivotGrid and there is a vertical scrollbar present.
Completed
Last Updated: 20 Dec 2024 08:46 by ADMIN
Release 2024.4.1219 (Preview)
The CollectionEditor control has a ListBox on its left side, which has an indicator for the selected item when the Windows 11 theme is applied. Performing a selection and then reopening the drop-down to display the CollectionEditor, performing a selection does not update the indicator. It stays on the previously selected item prior to closing the drop-down.
Unplanned
Last Updated: 19 Dec 2024 07:54 by Mark
'Fit to Content' table is not pasted properly when copied from MS Word
Unplanned
Last Updated: 19 Dec 2024 07:00 by Benjamin

When using French culture (fr-CH), one cannot input more than 4 digits. This is because the thousand separator is set to NarrowNonBreakableSpace. 

Possible workaround, use NonBreakableSpace.

In Development
Last Updated: 18 Dec 2024 13:57 by ADMIN
Scheduled for 2025 Q1 (February)
The dropdown remains opened when switching the window with Alt+Tab.
Pending Review
Last Updated: 18 Dec 2024 13:52 by Romain
Created by: Romain
Comments: 0
Category: UI for WPF
Type: Feature Request
0

Hi,

it would be convenient to add an extra small font size to te existing enumerations. For instance in Windows 11 theme, could it be possible to add a XS size:

Windows11Palette.Palette.FontSizeXS = 10;
Windows11Palette.Palette.FontSizeS = 12; 
Windows11Palette.Palette.FontSize = 14; 
Windows11Palette.Palette.FontSizeM = 18; 
Windows11Palette.Palette.FontSizeL = 20; 
Windows11Palette.Palette.FontSizeXL = 28; 

Having a range in the bigger font sizes is very useful. It owuld be equally helpful to have a range on the smaller font.

Thank you for considering it :)

Unplanned
Last Updated: 18 Dec 2024 09:55 by Keisuke
Editing hyperlink image leads to duplication of the image.
Unplanned
Last Updated: 18 Dec 2024 09:38 by Martin Ivanov

The selection with the Shift key when SelectionMode=Extended no longer works in the default Nested rendering mode of RadGridView. This reproduces only when the data view is grouped.

To work this around, set the GroupRenderMode property of RadGridView to Flat.

<telerik:RadGridView GroupRenderMode="Flat" />

1 2 3 4 5 6